Skip to main content

How to get content Ideas for Social Media - codeandman

How to Get Content Ideas for Social Media

Hey guys how are you all today in this post I am going to tell you that How you can get the content ideas for the social media so let's begin:

What is content 

The content is the type of materials like videos, posts, blogposts etc is called content.

Publishing the content online is very important if you want to make money online because internet will give you money only if you give something in return to the internet.

How to get content ideas

So guys if you want to develop the skill of finding unique and different type of content ideas everyday in your brain then you have to follow these techniques which I am going to tell you in this post. so now let's begin with the main post.

Ways to get content ideas

So guys I am going to tell you about some ways from which you can make money online so let's begin:

Using Quora 

So guys if you don't know then I may tell you that there are bloggers who get the whole content ideas from Quora. Even I found the idea to my last blogpost idea from the Quora. If you have enough knowledge about any type of topic and you have researched well about it then you have to search for the topic on which you want to write your blogpost. Now you will find the search results in the search results you will find some questions. You can also answer all of these questions in your blogpost to add the quality to it.

Using Google

So guys you can also get content ideas through google so guys you have to go to the google and search about any topic on which you want to write the blogpost. once you wrote the topic in the search bar after that press enter. Now you will get several results about this topic or keyword Now what you have to do is that go to the bottom of the page and copy all the related searches and add these searches as headings in your blogpost. If you used all the things covered in this post then you are able to write at least 3000-4000 words post. which is a pretty great achievement for you.

    One another way to find the content ideas from the google is that when you type about any topic on the google then you will find some suggestions coming down you can also write blogpost on any of these topics or create a video on any of these.

Using YouTube

I am sure that most of you don't know that you can also get content ideas using the YouTube. how? I will tell you in this post so let's begin:

So guys If you want to find content ideas using the youtube then follow these steps:

Step 1 : Go to YouTube App



Step 2 : Click on the search Bar  

Step 3 : Type your topic and you will get many type of content Ideas here.
        

Step 4 : Press enter and now you will find millions of videos with their topics here you will also find many content ideas.

Using Social Media Groups

If you want to find more content ideas on the regular basis then what you can do is that you can go to the social media and find the groups related to your niche now join these groups now you will say that how this will help me so for your information there are many people out in the market which are very curious and always have many questions many of these kind of people often post there questions in these social media groups and from there you can find that about what you next blogpost will be.
    You can also get traffic to your blog using social media groups what you can do is that you can write some posts about these questions and then link those posts and share to the Groups. In this way you will also get traffic including the content idea.

Using Buzz Sumo

The buzz sumo is a great tool for bloggers which provides you many many great features for your information I may tell you that I am not gotten paid by buzzsumo I am only preferring to use this tool because I am using this. I hope that you understand what I am trying to say.

From Youtube Videos

If you don't know then you can also find unlimited content ideas from the YouTube videos. To find content ideas you have to search about your niche on the YouTube and then you  have to click on one of the videos coming in the search results and  watch it till the end. Now if you chose a right and a great video then you will get an idea on the topic on which the video was made once you find a channel then you can easily get dozens of ideas from YouTube videos.


So Guys I hope that you liked this post if yes then don't forget to like and share and subscribe to my YouTube Channel and also share this post to everyone who needs more content ideas.

Thank You so much.

Comments

Popular posts from this blog

The Professional HTML Cheatsheet For beginners in 2024 for free

The Professional HTML Cheatsheet For beginners in 2024 for free Hello guys,  You will be glad to know that I am going to start a cheatsheet series for you all. In this series I am going to give you cheat sheets of all the programming languages. If you want to get all of these cheat sheets for free then you can follow this blog and visit my youtube channel if you like the video content. This is the link to my youtube channel :- https://www.youtube.com/channel/UCmbrOCauavTcwIJeXYo4pjQ This is the link to my instagram :- https://instagram.com/gautam9465580 Father of all the links (Link to all of my social media platforms) :- https://code-and-man.blogspot.com/p/my-link-tree.html Now got all the information which I want to give you before the post so now let’s get started with the post:- In today’s post I am going to give you the first cheatsheet which is of HTML so let’s begin:- Boilerplate of HTML The Boilerplate code is the common code which is used in almost all of the web pages c...

Arrays and conversion in Javascript || javascript complete course || #7 (sourcecode)

hey guys how are you all today in this post I am going to give you the source code of my video called arrays and  conversion in JavaScript so let's begin:- // ARRAYS in javascript console . log (" This is arrays in js ") var arr1 = [ 32 , 34 , 23 , 23 , 234 ," this ", {     name:" Gautam ",     class : " 8th ",     rollno: 6 } ] console . log ( arr1 ) console . log ( arr1 [ 5 ]) console . log ( arr1 .length) console . log ( arr1 . concat (' main ')); console . log ( arr1 ); // // ---------------------------------------------------- // CONVERSION IN JAVASCRIPT // Converting in to strings var num1 = 45 ; console . log ( num1 ); var str1 = String ( num1 ); console . log ( str1 ); console . log ( typeof str1 ); console . log ( typeof num1 ); var number1 = 33453434 ; console . log ( number1 , typeof number1 ); var string1 = number1 . toString (); console . log ( string1 , typeof string1 ); // ----------------------------...

types of operators in javascript || javascript course || codeandman (sourcecode)

hey guys how are you all today in this post I am going to give you the source code of my video called types of operators in javascript. so let's begin : here's the complete source code and the video:- // ------------------------------------------------------------------------------------ // COMPARISON OPERATORS IN JAVASCRIPT console . log (" COMPARISON OPERATORS IN JAVASCRIPT ") console . log ( 32 == 32 ) // checking if 32 is equal to 32 console . log ( 32 != 32 ) // checking if 32 is not equal to 32 console . log ( 32 >= 31 ) // checking if 32 is greater or equal to 31 console . log ( 32 < 33 ) console . log ( 32 > 30 ) console . log ( 32 <= 09 ) // ASSIGNMENT OPERATORS console . log (" --------------------------------------- ") console . log (" Assignment operators in javascript ") var d = 34 ; var e = 3 ; var a = 10 ; console . log ( d ) console . log ( d += 1 ) console . log ( d -= 3 ) console . log ( e *= 2 ) console . log...